home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / waisgate / irinv.h < prev    next >
C/C++ Source or Header  |  1995-05-09  |  710b  |  29 lines

  1. /* WIDE AREA INFORMATION SERVER SOFTWARE:
  2.    No guarantees or restrictions.  See the readme file for the full standard
  3.    disclaimer.
  4.  
  5.    Brewster@think.com
  6. */
  7.  
  8. /* include file for irfiles.c */
  9.  
  10. #ifndef IRINV_H
  11. #define IRINV_H
  12.  
  13. #include "irfiles.h" /* for database */
  14.  
  15. long allocate_index_block _AP((long how_large, FILE* stream));
  16.  
  17. void flush_memory_hashtable_to_disk _AP((database* db, boolean completely));
  18.  
  19. long read_dictionary_index_block
  20.   _AP((long index_block,long* last_index_block,long* index_block_size,
  21.        long* number_of_occurances,char* word,FILE* stream));
  22.  
  23. long write_dictionary_index_block _AP((long number_of_occurances,
  24.                        char* word,FILE* stream));
  25.  
  26.  
  27. #endif /* ndef IRINV_H */
  28.  
  29.